home *** CD-ROM | disk | FTP | other *** search
Text File | 1990-04-05 | 978 b | 42 lines | [TEXT/MPS ] |
- ; File: E16.List
- ;
- ;
- ; Copyright Apple Computer, Inc. 1986-90
- ; All Rights Reserved
- ;
- ;
- cString EQU $0001 ; null terminated string type
- LIST_STRG EQU $0001 ; null terminated string type
- selectOnlyOne EQU $0002 ; only one selection allowed
- LIST_SELECT EQU $0002 ; single selection only
- memDisabled EQU $40 ; Sets member flag to disabled
- memSelected EQU $80 ; Sets member flag to selected
- ; offset constants for LColorTable
- olistFrameClr EQU 0
- olistNorTextClr EQU 2
- olistSelTextClr EQU 4
- olistNorBackClr EQU 6
- olistSelBackClr EQU 8
- ; offset constants for MemRec
- omemPtr EQU 0
- omemFlag EQU 4
- ; Front of ListCtlRec matches CtlRec
- octlMemDraw EQU 40
- octlMemHeight EQU 44
- octlMemSize EQU 46
- octlList EQU 48
- octlListBar EQU 52
- ; offset constants for ListRec
- olistRect EQU 0
- olistSize EQU 8
- olistView EQU 10
- olistType EQU 12
- olistStart EQU 14
- olistCtl EQU 16
- olistDraw EQU 20
- olistMemHeight EQU 24
- olistMemSize EQU 26
- olistPointer EQU 28
- olistRefCon EQU 32
- olistScrollClr EQU 36
-